home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
ablood1a
/
module1.bas
< prev
next >
Wrap
BASIC Source File
|
1998-10-11
|
396b
|
10 lines
Attribute VB_Name = "Module1"
'all of this was done by me, i did not copy it from nobody. I got it from the
'api text viewer, so shut up! :)
Public Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" (ByVal lpszName As String, ByVal hModule As Long, ByVal dwFlags As Long) As Long
Public Function playwav(ByVal wName As String)
PlaySound wName, Form1.hDC, 0
End Function